Uses of Class
observations.PhenomenonType

Packages that use PhenomenonType
observations The observations package represents the domain layer.  
 

Uses of PhenomenonType in observations
 

Methods in observations that return PhenomenonType
static PhenomenonType PhenomenonType.get(java.lang.String name)
          Searches a type by name.
 PhenomenonType PhenomenonType.persist()
          Saves the type to main memory.
 PhenomenonType Observation.getPhenomenonType()
          Gives the observations type.
 PhenomenonType Phenomenon.getPhenomenonType()
          Gives the type for the phenomenon.
 

Methods in observations with parameters of type PhenomenonType
 Quantity Patient.getLatestAmountOf(PhenomenonType value)
          Use this to search the latest amount observed and saved of a particular type.
 Observation Patient.getLatestObservation(PhenomenonType value)
          Gives the latest observation made on a particular type.
 java.util.Enumeration Patient.getObservationsOf(PhenomenonType value)
          Returns all observations made of a particular phenomenon.
 Phenomenon Patient.getPhenomenonOf(PhenomenonType phenomenonType)
          Gives the phenomenon for a particular type.
 

Constructors in observations with parameters of type PhenomenonType
Measurement(Quantity amount, PhenomenonType phenomenonType, Patient patient, java.util.Date whenObserved)
          Constructs a Measurement object.
Phenomenon(java.lang.String name, PhenomenonType type)
          Constructs a new phenomenon object with a particular type.